home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / CD-ROM Tools / FixZappo / Install < prev    next >
Text File  |  1996-09-26  |  2KB  |  85 lines

  1. ;FixZappo CD-ROM Drive,   Copyright ©1994  Dave Lomax
  2. ;This Installer for $VER 1.0 (28.11.94)
  3.  
  4. (complete 0)
  5.  
  6. (set @DESTINATION
  7.     (askdir
  8.         (prompt "Please select the directory in which the CDDA is "
  9.             "already placed.  You MUST already have this installed!")
  10.               (help @askdir-help)
  11.               (default "SYS:System")
  12.     )
  13. )
  14.  
  15. (set @DESTPIC ("%s%s" @DESTINATION "/Pics"))
  16.  
  17. (complete 5)
  18.  
  19. (makedir @DESTPIC
  20.     (prompt "\n\n\n\nCreating directory for Pictures for CDDA player...")
  21.     (help "\n\n\nI'm making a directory to bung all\n\n"
  22.           "of the new pictures in.\n\n")
  23.     (infos)
  24. )
  25.  
  26. (complete 25)
  27.  
  28. (copyfiles
  29.     (prompt "\n\n\nCopying Pictures for use with the CDDA Player...")
  30.     (help @copyfiles-help)
  31.     (source "Pics")
  32.     (dest @DESTPIC)
  33.     (all)
  34.     (confirm)
  35. )
  36.  
  37. (complete 40)
  38.  
  39. (copyfiles
  40.     (prompt "\n\n\n\nInstalling Needed Commands...\n\n")
  41.     (help @copyfiles-help)
  42.     (source "C")
  43.     (dest "C:")
  44.     (all)
  45.     (confirm)
  46. )
  47.  
  48. (complete 65)
  49.  
  50. (copyfiles
  51.     (prompt "\n\n\n\nCopying new utilities & bugfix...\n")
  52.     (help @copyfiles-help)
  53.     (source "Utils")
  54.     (dest @DESTINATION)
  55.     (infos)
  56.     (all)
  57.     (confirm)
  58. )
  59.  
  60. (complete 80)
  61.  
  62. (set @DESTHELP
  63.         (askdir
  64.                 (prompt "Where would you like the Guide Installed?")
  65.                 (help @askdir-help)
  66.                 (default "HELP:")
  67.         )
  68. )
  69.  
  70. (complete 90)
  71.  
  72. (copyfiles
  73.     (prompt "Copying Guide...\n")
  74.     (help "This will copy the Guide file\n"
  75.           "to where you have just selected...\n")
  76.     (source "FixZappo.Guide")
  77.     (dest @DESTHELP)
  78.     (infos)
  79.     (confirm)
  80. )
  81.  
  82. (complete 100)
  83.  
  84. (exit)
  85.